home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / jikes.lha / jikes-1.11 / src / jcl / jcl.cpp < prev    next >
C/C++ Source or Header  |  1999-11-04  |  579b  |  21 lines

  1. // $Id: jcl.cpp,v 1.1 1999/11/04 18:48:03 shields Exp $
  2. //
  3. // This software is subject to the terms of the IBM Jikes Compiler
  4. // License Agreement available at the following URL:
  5. // http://www.ibm.com/research/jikes.
  6. // Copyright (C) 1996, 1998, International Business Machines Corporation
  7. // and others.  All Rights Reserved.
  8. // You must accept the terms of that agreement to use this software.
  9. //
  10. #include "jcl_iclass.h"
  11.  
  12. int main(int argc, char *argv[])
  13. {
  14.     if (argc > 1) {
  15.                 InputClassFile  cf(argv[1]);
  16.                 cf.print();
  17.         }
  18.  
  19.     return 0;
  20. }
  21.